Inspect image data, smooth to remove noise and save channel in interest.
In [1]:
%run ../common.ipynb
In [2]:
image = imread('../MP.tiff')
In [3]:
image.shape
Out[3]:
In [5]:
image[:,:,0].shape
Out[5]:
In [16]:
imshow(image[:,:,0])
Out[16]:
In [14]:
image[100:110,100:110,3]
Out[14]:
In [17]:
imsave('../MP.tiff', smooth(image[:,:,0]))